1ae2bc90d738c5ef5689f0ec6051e071b195e36e,sahi/src/main/java/com/redhat/qe/jon/sahi/tasks/SahiTasks.java,SahiTasks,checkPlatform,#,658
Before Change
public void checkPlatform(){
this.link("Inventory").click();
Assert.assertTrue(this.cell("Platforms").exists());
this.cell("Platforms").click();
Assert.assertTrue(this.div("Linux").exists());
this.div("Linux").doubleClick();
}
After Change
public void checkPlatform(){
this.link("Inventory").click();
Assert.assertTrue(this.cell("Platforms").exists());
int count = this.cell("Platforms").countSimilar();
this.cell("Platforms").collectSimilar().get(count-1).click();
Assert.assertTrue(this.div("Linux").exists());
this.div("Linux").doubleClick();
}